Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 
 

68 righe
2.0 KiB

  1. <template>
  2. <section class="flex flex-col items-center min-h-screen">
  3. <div class="container w-full p-6 max-w-6xl grow flex flex-col items-center bg-slate-300">
  4. <NuxtLink class="w-full m-4 flex justify-end" :to="'/'">
  5. <uiClose />
  6. </NuxtLink>
  7. <img class="rounded-lg mb-6" :src="config.public.IMG_BASE_URL + film.poster_path" :alt="film.title">
  8. <div class="poster flex flex-col lg:flex-row w-full justify-center">
  9. <span>
  10. <h1 class="text-4xl font-bold leading-relaxed">
  11. {{ film.title }}
  12. </h1>
  13. <h2 class="text-2xl text-slate-700">
  14. {{ director }}
  15. </h2>
  16. <p class="my-8">
  17. {{ film.overview }}
  18. </p>
  19. <p>
  20. {{ formatPercent(film.vote_average) }} %
  21. </p>
  22. <p>
  23. {{ film.vote_count }} votes
  24. </p>
  25. <div class="flex justify-center">
  26. <ul class="flex items-center overflow-y-hidden overflow-x-scroll w-full max-w-lg">
  27. <li v-for="star in film.credits.cast" class="flex flex-col items-center p-4 bg-slate-200 rounded m-4">
  28. <UiPerson class="h-10" />
  29. {{ star.name }}
  30. </li>
  31. </ul>
  32. </div>
  33. <ul class="flex">
  34. <li v-for="genre in film.genres" class="p-8"> {{ genre.name }} </li>
  35. </ul>
  36. </span>
  37. </div>
  38. <div>
  39. <CommentForm :filmId="film.id" />
  40. <CommentList :filmId="film.id" />
  41. </div>
  42. </div>
  43. </section>
  44. </template>
  45. <script setup lang="ts">
  46. const router = useRouter()
  47. const config = useRuntimeConfig()
  48. const film = ref()
  49. const route = useRoute()
  50. const filmId = ref('')
  51. const director = ref('')
  52. filmId.value = route.params.id
  53. if (filmId.value !== '') {
  54. const { data } = await useFetch(`/api/details/${filmId.value}`)
  55. film.value = data.value
  56. director.value = film.value.credits.crew.filter((member) => member.job === 'Director')
  57. director.value = director.value[0].name
  58. }
  59. onMounted(() => {
  60. window.scrollTo(0, 0)
  61. })
  62. </script>